home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-05-31 | 1.2 KB | 43 lines | [TEXT/KAHL] |
- /* ===================================
-
- File: Result.h
- Function: Header for this window
- History: 4/27/89 Original by Prototyper.
-
- ================================= */
-
-
- /* Initialize us so all our routines can be activated */
- void Init_Result(void);
-
- /* Open our window and draw everything */
- void Open_Result(void);
-
- /* Update our window, someone uncovered a part of us */
- void UpDate_Result(WindowPtr whichWindow);
-
- /* Handle action to our window, like controls */
- void Do_Result(EventRecord *myEvent);
-
- /* Do window resizing, resize the scrollbars */
- void Resized_Result( WindowPtr whichWindow);
-
- /* -- we need activate and deactivate the window -- hiding scroll bars */
-
- void save_result(void);
- /* saves results PICT2 to a PICT file -- called when SAVE PICT menu item chosen */
-
- void copy_result(void);
- /* copys a PICT from the result pixmap into the clipboard */
-
- void cut_result(void);
- /* copys a PICT from the result pixmap into the clipboard, and then clears the pixmap */
-
- void grow_result (Point * where, WindowPtr whichWindow);
- void zoom_result (Point * where, WindowPeek whichWindow, short code);
- void activate_result ( WindowPtr whichWindow, long modifiers);
-
- void crop_result(void);
- void clear_result(void);
-
-